home *** CD-ROM | disk | FTP | other *** search
/ BMUG PD-ROM 1995 Fall / PD-ROM F95.toast / Programming / Programming Languages / PC Basic ƒ / PCBASIC Stand alone version / PCBASIC Demo / PCBASICDemo / PCBASICDemo.rsrc / STR#_505.txt < prev    next >
Encoding:
Text File  |  1992-02-22  |  1.0 KB  |  41 lines

  1.    PCBASIC handles the mouse activity for the system, menus,
  2.  
  3. dialog boxes and scroll bars. The BASIC programmer only has
  4.  
  5. to take care of clicks within the main windows. PCBASIC can
  6.  
  7. even vector to a line number as soon as the mouse is clicked
  8.  
  9. in the active window.
  10.  
  11.  
  12.  
  13.     The special Edit menu simplifies editing. It takes care of
  14.  
  15. 'Cut', 'Copy' and 'Paste' for your dialog boxes automatically.
  16.  
  17. But you can handle the Edit menu selections for the active
  18.  
  19. window yourself. The Edit menu can vector to a BASIC line, or
  20.  
  21. you can poll for menu selections whenever you are ready.
  22.  
  23.  
  24.  
  25.     PCBASIC has powerful mouse sensing commands, to make your
  26.  
  27. job still easier. Your BASIC program can detect a single click
  28.  
  29. or a multiple click with one MOUSE function call. Other calls
  30.  
  31. return the starting, ending and current locations of the mouse.
  32.  
  33. The functions can return either graphic coordinates or the line
  34.  
  35. and column location for editing text! That makes highlighting
  36.  
  37. selected text simple, even when using a proportional font.
  38.  
  39. END
  40.  
  41.